@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Paytone One';
}

section{
    width: 100%;
    height: 100vh;
}

section nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    right: 0;
    left: 0;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0,  5);
    z-index: 1000;
    background-color: #C81F34;
}

section nav .logo img{
    width: 100px;
    cursor: pointer;
    margin: 7px 0;
}

section nav ul{
    list-style: none;
    margin-right: 280px;
}

section nav ul li{
    display: inline-block;
    margin: 0 15px;
}

section nav ul li a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 17px;
    transition: 0.1s;
}

section nav ul li a::after{
    content: '';
    width: 0;
    height: 2px;
    background: #F4D2D6;
    display: block;
    transition: 0.2s linear;
}

section nav ul li a:hover::after{
    width: 100%;
}

section nav ul li a:hover{
    color: #F4D2D6;
}

section .delivery{
    position: absolute;
    margin-left: 1200px;
}

section .delivery img {
    transition: 0.3s;
}

section .delivery:hover img {
    animation: moveX 0.8s ease-out 1;
}

@keyframes moveX {
    0%   { transform: translateX(0); }
    12%  { transform: translateX(-6px); }
    25%  { transform: translateX(6px); }
    37%  { transform: translateX(-6px); }
    50%  { transform: translateX(6px); }
    62%  { transform: translateX(-3px); }
    75%  { transform: translateX(3px); }
    87%  { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

.contact_us {
  position: relative;
  width: 100%;
  margin-top: -600px;
}

.blue-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: -1;
}

.container {
  max-width: 600px;
  background: #fff;
  padding: 30px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}

.subhead {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

button {
  display: block;
  width: 100%;
  padding: 12px;
  background: #E21C2A;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #c71827;
}